home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_dev-disk / egsincludes / clib / gbtextedit_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  2.2 KB  |  66 lines

  1. #ifndef CLIB_EGB_GBTEXTEDIT_PROTOS_H
  2. #define CLIB_EGB_GBTEXTEDIT_PROTOS_H
  3.  
  4. /***************************************************************************\
  5. *  $
  6. *  $ FILE     : gbTextEdit_protos.h
  7. *  $ VERSION  : 1
  8. *  $ REVISION : 2
  9. *  $ DATE     : 08-Dec-93 13:47
  10. *  $
  11. *  $ Author   : mvk
  12. *  $
  13. *
  14. *
  15. *****************************************************************************
  16. *                                                                           *
  17. * (c) Copyright 1990/94 VIONA Development                                   *
  18. *     All Rights Reserved                                                   *
  19. *                                                                           *
  20. \***************************************************************************/
  21.  
  22. #ifndef         EXEC_TYPES_H
  23. #include        <exec/types.h>
  24. #endif
  25. #ifndef         EGS_EGSINTUI_H
  26. #include        <egs/egsintui.h>
  27. #endif
  28. #ifndef         EGS_EGSGADBOX_H
  29. #include        <egs/egsgadbox.h>
  30. #endif
  31. #ifndef         EGS_EGB_GBTEXTEDIT_H
  32. #include        <egs/egb/gbtextedit.h>
  33. #endif
  34.  
  35. EB_GadBoxPtr EGB_CreateFlowTextGadget(EB_GadContext con,
  36.                        WORD            minW,
  37.                        WORD            maxW,
  38.                        WORD            minH,
  39.                        WORD            maxH,
  40.                        EG_EFontPtr      font,
  41.                        WORD            bsize,
  42.                        LONG            id);
  43.  
  44. void EGB_ModifyFlowTextGadget(EI_WindowPtr       win,
  45.                               EGB_FlowTextGadPtr gad,
  46.                               char              *text);
  47.  
  48. WORD EGB_GetFlowTextValue(EGB_FlowTextGadPtr  gad,
  49.                           char               *buff,
  50.                           WORD                len);
  51.  
  52. void EGB_SetFlowTextCursor(EI_WindowPtr        win,
  53.                            EGB_FlowTextGadPtr  gad,
  54.                            WORD                pos);
  55.  
  56. void EGB_ActivateFlowTextGadget(EI_WindowPtr       win,
  57.                             EGB_FlowTextGadPtr  gad,
  58.                             BOOL               force);
  59.  
  60. WORD EGB_GetFlowTextBlock(EGB_FlowTextGadPtr  gad,
  61.               char             *buff,
  62.               WORD              len);
  63.  
  64. #endif /* CLIB_EGB_GBTEXTEDIT_PROTOS_H */
  65.  
  66.